Skip to content

Update module google.golang.org/grpc to v1.79.3 [SECURITY]#739

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/go-google.golang.org-grpc-vulnerability
Open

Update module google.golang.org/grpc to v1.79.3 [SECURITY]#739
renovate[bot] wants to merge 1 commit intomainfrom
renovate/go-google.golang.org-grpc-vulnerability

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 31, 2026

This PR contains the following updates:

Package Change Age Confidence
google.golang.org/grpc v1.79.1v1.79.3 age confidence

GitHub Vulnerability Alerts

CVE-2026-33186

Impact

What kind of vulnerability is it? Who is impacted?

It is an Authorization Bypass resulting from Improper Input Validation of the HTTP/2 :path pseudo-header.

The gRPC-Go server was too lenient in its routing logic, accepting requests where the :path omitted the mandatory leading slash (e.g., Service/Method instead of /Service/Method). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official grpc/authz package) evaluated the raw, non-canonical path string. Consequently, "deny" rules defined using canonical paths (starting with /) failed to match the incoming request, allowing it to bypass the policy if a fallback "allow" rule was present.

Who is impacted?
This affects gRPC-Go servers that meet both of the following criteria:

  1. They use path-based authorization interceptors, such as the official RBAC implementation in google.golang.org/grpc/authz or custom interceptors relying on info.FullMethod or grpc.Method(ctx).
  2. Their security policy contains specific "deny" rules for canonical paths but allows other requests by default (a fallback "allow" rule).

The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed :path headers directly to the gRPC server.

Patches

Has the problem been patched? What versions should users upgrade to?

Yes, the issue has been patched. The fix ensures that any request with a :path that does not start with a leading slash is immediately rejected with a codes.Unimplemented error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string.

Users should upgrade to the following versions (or newer):

  • v1.79.3
  • The latest master branch.

It is recommended that all users employing path-based authorization (especially grpc/authz) upgrade as soon as the patch is available in a tagged release.

Workarounds

Is there a way for users to fix or remediate the vulnerability without upgrading?

While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods:

1. Use a Validating Interceptor (Recommended Mitigation)

Add an "outermost" interceptor to your server that validates the path before any other authorization logic runs:

func pathValidationInterceptor(ctx context.Context, req any, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (any, error) {
    if info.FullMethod == "" || info.FullMethod[0] != '/' {
        return nil, status.Errorf(codes.Unimplemented, "malformed method name")
    }   
    return handler(ctx, req)
}

// Ensure this is the FIRST interceptor in your chain
s := grpc.NewServer(
    grpc.ChainUnaryInterceptor(pathValidationInterceptor, authzInterceptor),
)

2. Infrastructure-Level Normalization

If your gRPC server is behind a reverse proxy or load balancer (such as Envoy, NGINX, or an L7 Cloud Load Balancer), ensure it is configured to enforce strict HTTP/2 compliance for pseudo-headers and reject or normalize requests where the :path header does not start with a leading slash.

3. Policy Hardening

Switch to a "default deny" posture in your authorization policies (explicitly listing all allowed paths and denying everything else) to reduce the risk of bypasses via malformed inputs.


Release Notes

grpc/grpc-go (google.golang.org/grpc)

v1.79.3: Release 1.79.3

Compare Source

Security

  • server: fix an authorization bypass where malformed :path headers (missing the leading slash) could bypass path-based restricted "deny" rules in interceptors like grpc/authz. Any request with a non-canonical path is now immediately rejected with an Unimplemented error. (#​8981)

v1.79.2: Release 1.79.2

Compare Source

Bug Fixes

  • stats: Prevent redundant error logging in health/ORCA producers by skipping stats/tracing processing when no stats handler is configured. (#​8874)

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link
Copy Markdown

Overview

Image reference ghcr.io/gatewayd-io/gatewayd:2202641 gatewaydio/gatewayd:latest
- digest ef8062a24c54 a40a6b49f8e3
- tag 2202641 latest
- provenance bb73104
- vulnerabilities critical: 0 high: 2 medium: 5 low: 3 critical: 1 high: 3 medium: 6 low: 4
- platform linux/amd64 linux/amd64
- size 22 MB 20 MB (-2.6 MB)
- packages 149 145 (-4)
Base Image alpine:3
also known as:
3.23
3.23.3
latest
alpine:3.23
also known as:
3
3.23.3
latest
- vulnerabilities critical: 0 high: 0 medium: 2 low: 1 critical: 0 high: 0 medium: 2 low: 1
Packages and Vulnerabilities (50 package changes and 2 vulnerability changes)
  • ➕ 23 packages added
  • ➖ 23 packages removed
  • ♾️ 4 packages changed
  • 118 packages unchanged
  • ❗ 2 vulnerabilities added
Changes for packages of type apk (4 changes)
Package Version
ghcr.io/gatewayd-io/gatewayd:2202641
Version
gatewaydio/gatewayd:latest
alpine-base 3.23.3-r0
ca-certificates 20251003-r0
openssl 3.5.5-r0
pax-utils 1.3.8-r2
Changes for packages of type golang (46 changes)
Package Version
ghcr.io/gatewayd-io/gatewayd:2202641
Version
gatewaydio/gatewayd:latest
github.com/cenkalti/backoff/v5 5.0.3
github.com/cenkalti/backoff/v5 5.0.3
github.com/cespare/xxhash/v2 2.3.0
github.com/cespare/xxhash/v2 2.3.0
github.com/containerd/errdefs/pkg 0.3.0
github.com/cpuguy83/go-md2man/v2 2.0.6
github.com/cpuguy83/go-md2man/v2 2.0.6
github.com/flosch/pongo2/v6 6.0.0
github.com/flosch/pongo2/v6 6.0.0
♾️ github.com/gatewayd-io/gatewayd 0.0.0-20260331075012-2202641bc779+dirty 0.11.1
github.com/go-git/go-billy/v5 5.6.0
github.com/go-git/go-billy/v5 5.6.0
github.com/go-git/go-git/v5 5.13.0
github.com/go-git/go-git/v5 5.13.0
github.com/google/go-github/v68 68.0.0
github.com/google/go-github/v68 68.0.0
github.com/grpc-ecosystem/grpc-gateway/v2 2.28.0
github.com/grpc-ecosystem/grpc-gateway/v2 2.28.0
♾️ github.com/hashicorp/go-msgpack 2.1.2 0.5.5
github.com/hashicorp/go-msgpack/v2 2.1.2
github.com/jackc/pgx/v5 5.8.0
github.com/jackc/pgx/v5 5.8.0
github.com/masterminds/semver/v3 3.4.0
github.com/masterminds/semver/v3 3.4.0
github.com/pganalyze/pg_query_go/v6 6.2.2
github.com/pganalyze/pg_query_go/v6 6.2.2
github.com/redis/go-redis/v9 9.18.0
github.com/redis/go-redis/v9 9.18.0
github.com/robfig/cron/v3 3.0.1
github.com/robfig/cron/v3 3.0.1
github.com/russross/blackfriday/v2 2.1.0
github.com/russross/blackfriday/v2 2.1.0
github.com/santhosh-tekuri/jsonschema/v5 5.3.1
github.com/santhosh-tekuri/jsonschema/v5 5.3.1
github.com/wk8/go-ordered-map/v2 2.1.8
github.com/wk8/go-ordered-map/v2 2.1.8
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp 0.55.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp 0.55.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace 1.40.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.40.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.40.0
google.golang.org/genproto/googleapis/api 0.0.0-20260217215200-42d3e9bedb6d
google.golang.org/genproto/googleapis/api 0.0.0-20260217215200-42d3e9bedb6d
google.golang.org/genproto/googleapis/rpc 0.0.0-20260209200024-4cfbd4190f57
♾️ google.golang.org/grpc 1.79.3 1.79.1
critical: 1 high: 0 medium: 0 low: 0
Added vulnerabilities (1):
  • critical : CVE--2026--33186
♾️ stdlib 1.25.8 1.25.7
critical: 0 high: 1 medium: 0 low: 0
Added vulnerabilities (1):
  • high : CVE--2026--25679

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants